crypto/tls.finishedMsg.marshal (method, view implemented interface methods)

13 uses

	crypto/tls (current package)
		handshake_client.go#L790: 	hs.finishedHash.Write(serverFinished.marshal())
		handshake_client.go#L836: 	hs.finishedHash.Write(finished.marshal())
		handshake_client.go#L837: 	if _, err := c.writeRecord(recordTypeHandshake, finished.marshal()); err != nil {
		handshake_client_tls13.go#L517: 	hs.transcript.Write(finished.marshal())
		handshake_client_tls13.go#L619: 	hs.transcript.Write(finished.marshal())
		handshake_client_tls13.go#L620: 	if _, err := c.writeRecord(recordTypeHandshake, finished.marshal()); err != nil {
		handshake_messages.go#L1543: func (m *finishedMsg) marshal() []byte {
		handshake_server.go#L727: 	hs.finishedHash.Write(clientFinished.marshal())
		handshake_server.go#L784: 	hs.finishedHash.Write(finished.marshal())
		handshake_server.go#L785: 	if _, err := c.writeRecord(recordTypeHandshake, finished.marshal()); err != nil {
		handshake_server_tls13.go#L650: 	hs.transcript.Write(finished.marshal())
		handshake_server_tls13.go#L651: 	if _, err := c.writeRecord(recordTypeHandshake, finished.marshal()); err != nil {
		handshake_server_tls13.go#L712: 	hs.transcript.Write(finishedMsg.marshal())